home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung / Power-Programmierung (Tewi)(1994).iso / magazine / pctchnqs / 1990 / number5 / _heap.pas next >
Pascal/Delphi Source File  |  1990-10-04  |  159b  |  14 lines

  1. unit _Heap; 
  2. {Heap's private read/write variables}
  3.  
  4. interface
  5.  
  6. var
  7.   FreeBlocks: word;
  8.   MemAvail, 
  9.   MaxAvail:   LongInt;
  10.  
  11. implementation
  12.  
  13. end.
  14.